home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / othergnu / gdbm15.zoo / fsync.c < prev    next >
Encoding:
Text File  |  1992-09-24  |  191 b   |  9 lines

  1. /* MiNT does not have this. it is not posix either. i don't know if ret type
  2.    should be int or void. at any rate, here is a do-nothing fsync. */
  3.  
  4. int
  5. fsync (int fd)
  6. {
  7.     return(0);
  8. }
  9.